78853efe07e30e1199ff8229b769a5d501ec3d36,src/test/java/com/baidu/bjf/remoting/protobuf/idlgenerate/EnumIDLGeneratorTest.java,EnumIDLGeneratorTest,testMostComplexIDLSourceGenerate,#,66

Before Change


    @Ignore
    @Test
    public void testMostComplexIDLSourceGenerate() throws IOException {
        InputStream fis = EnumIDLGeneratorTest.class.getResourceAsStream("si_product_biz.proto");
        ProtobufIDLProxy.generateSource(fis, new File("D:\\test"));
    }
    

After Change


    @Ignore
    @Test
    public void testMostComplexIDLSourceGenerate() throws IOException {
        File file = new File(EnumIDLGeneratorTest.class.getResource("si_product_biz.proto").getFile());
        ProtobufIDLProxy.generateSource(file, new File("D:\\test"));
    }